home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat4 / dirent.z / dirent
Encoding:
Text File  |  2002-10-03  |  2.9 KB  |  67 lines

  1.  
  2.  
  3.  
  4. DDDDIIIIRRRREEEENNNNTTTT((((4444))))                                                            DDDDIIIIRRRREEEENNNNTTTT((((4444))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      dirent, dirent64 - file system independent directory entry
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      ####iiiinnnncccclllluuuuddddeeee <<<<ssssyyyyssss////ddddiiiirrrreeeennnntttt....hhhh>>>>
  13.  
  14. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  15.      Different file system types may have different directory entries.  The
  16.      _d_i_r_e_n_t structure defines a file system independent directory entry, which
  17.      contains information common to directory entries in different file system
  18.      types.  A set of these structures is returned by the _g_e_t_d_e_n_t_s(2) system
  19.      call.
  20.  
  21.      The _d_i_r_e_n_t structure is defined below.
  22.  
  23.           struct dirent {
  24.                ino_t          d_ino;
  25.                off_t          d_off;
  26.                unsigned short d_reclen;
  27.                char      d_name[1];
  28.           };
  29.  
  30.  
  31.      The dddd____iiiinnnnoooo is a number which is unique for each file in the file system.
  32.      The field dddd____ooooffffffff is an opaque offset (i.e., not necessarily in bytes) of
  33.      the next directory entry in the actual file system directory.  The field
  34.      dddd____nnnnaaaammmmeeee is the beginning of the character array giving the name of the
  35.      directory entry.  This name is null terminated and may have at most
  36.      MMMMAAAAXXXXNNNNAAAAMMMMLLLLEEEENNNN characters.  This results in file system independent directory
  37.      entries being variable length entities.  The value of dddd____rrrreeeecccclllleeeennnn is the
  38.      record length of this entry.  This length is defined to be the number of
  39.      bytes between the current entry and the next one, so that it will always
  40.      result in the next entry being properly aligned.
  41.  
  42.      The _d_i_r_e_n_t_6_4 structure differs from the _d_i_r_e_n_t structure in the types of
  43.      the dddd____iiiinnnnoooo and dddd____ooooffffffff fields. dddd____iiiinnnnoooo is a iiiinnnnoooo66664444____tttt and dddd____ooooffffffff is an ooooffffffff66664444____tttt.
  44.      The _d_i_r_e_n_t_6_4 structure is used with the _g_e_t_d_e_n_t_s_6_4, _n_g_e_t_d_e_n_t_s_6_4,
  45.      _r_e_a_d_d_i_r_6_4, _t_e_l_l_d_i_r_6_4, and _s_e_e_k_d_i_r_6_4 calls.
  46.  
  47. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  48.      directory(3C), getdents(2).
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.